Randomly select an item from a listΒΆ

Randomly select an item from a list.
Expected output:
Red
import random

color = ['Red', 'Green', 'Black', 'Orange', 'Black']
print(random.choice(color))

Output:

Black